/* ===========================
   VARIÁVEIS E RESET
   =========================== */

:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-primary: #d4af37;
    --accent-secondary: #c9a227;
    --accent-light: #e8e8e8;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --success: #27ae60;
    --instagram: #E4405F;
    --whatsapp: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-primary);
    background-color: var(--primary-dark);
    line-height: 1.6;
}

/* ===========================
   CONTAINER
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   GALLERY SECTION
   =========================== */

.gallery-section {
    background: var(--primary-dark);
    padding: 60px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.25);
}

/* ===========================
   HEADER
   =========================== */

.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 30px 0;
    border-bottom: 2px solid var(--accent-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #2a1a2e 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===========================
   SPECIALTIES GRID
   =========================== */

.specialties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.specialty-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--accent-primary);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.specialty-card:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.specialty-card i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: block;
}

.specialty-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.specialty-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   SOCIAL BUTTONS
   =========================== */

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-whatsapp,
.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: #1ead51;
}

.btn-instagram {
    background: var(--instagram);
    color: white;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 64, 95, 0.5);
    background: #d63447;
}

/* ===========================
   FORM SECTION
   =========================== */

.form-section {
    background: var(--primary-dark);
    padding: 100px 20px;
}

.form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.03);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.btn-submit {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    border: 1px solid #27ae60;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 100px 20px;
    background: var(--primary-dark);
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--accent-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 8px;
    border-top: 3px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   CTA FINAL SECTION
   =========================== */

.cta-final {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 20px;
    text-align: center;
    border-top: 2px solid var(--accent-primary);
}

.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-final p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button,
.cta-button-ig {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.cta-button {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: #1ead51;
}

.cta-button-ig {
    background: var(--instagram);
    color: white;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.cta-button-ig:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 64, 95, 0.5);
    background: #d63447;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--primary-dark);
    border-top: 2px solid var(--accent-primary);
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
}

.footer p {
    margin: 10px 0;
    font-size: 0.95rem;
}

.footer .contact-info {
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 15px;
}

.footer .contact-info i {
    margin-right: 8px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }

    .logo .tagline {
        font-size: 0.85rem;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .specialties {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .social-buttons {
        gap: 15px;
    }

    .btn-whatsapp,
    .btn-instagram {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-final h2 {
        font-size: 1.8rem;
    }

    .cta-final p {
        font-size: 1rem;
    }

    .final-buttons {
        gap: 15px;
    }

    .cta-button,
    .cta-button-ig {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 0;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .specialty-card {
        padding: 30px 20px;
    }

    .specialty-card i {
        font-size: 2.5rem;
    }

    .specialty-card h3 {
        font-size: 1.2rem;
    }

    .social-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-whatsapp,
    .btn-instagram {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .form-section {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .about {
        padding: 60px 20px;
    }

    .about h2 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .benefit-item {
        padding: 30px 20px;
    }

    .benefit-item i {
        font-size: 2rem;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
    }

    .cta-final {
        padding: 50px 20px;
    }

    .cta-final h2 {
        font-size: 1.5rem;
    }

    .final-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button,
    .cta-button-ig {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .cta-button i,
    .cta-button-ig i {
        font-size: 1.1rem;
    }
}
